home *** CD-ROM | disk | FTP | other *** search
- class RowMessage extends MovieClip
- {
- var combo = "cc";
- function RowMessage()
- {
- super();
- }
- function setCombo(c)
- {
- if(c == 4)
- {
- this.gotoAndPlay("4InLine");
- }
- else if(c == 5)
- {
- this.gotoAndPlay("5InLine");
- }
- else if(c > 5)
- {
- this.gotoAndPlay("6+InLine");
- }
- }
- }
-